@azure/data-tables 13.3.1-alpha.20250402.1 → 13.3.1-alpha.20250407.2
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/README.md +15 -18
- package/dist/browser/TableClient.d.ts +30 -24
- package/dist/browser/TableClient.d.ts.map +1 -1
- package/dist/browser/TableClient.js +30 -20
- package/dist/browser/TableClient.js.map +1 -1
- package/dist/browser/TableServiceClient.d.ts +0 -4
- package/dist/browser/TableServiceClient.d.ts.map +1 -1
- package/dist/browser/TableServiceClient.js.map +1 -1
- package/dist/commonjs/TableClient.d.ts +30 -24
- package/dist/commonjs/TableClient.d.ts.map +1 -1
- package/dist/commonjs/TableClient.js +30 -20
- package/dist/commonjs/TableClient.js.map +1 -1
- package/dist/commonjs/TableServiceClient.d.ts +0 -4
- package/dist/commonjs/TableServiceClient.d.ts.map +1 -1
- package/dist/commonjs/TableServiceClient.js.map +1 -1
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/dist/esm/TableClient.d.ts +30 -24
- package/dist/esm/TableClient.d.ts.map +1 -1
- package/dist/esm/TableClient.js +30 -20
- package/dist/esm/TableClient.js.map +1 -1
- package/dist/esm/TableServiceClient.d.ts +0 -4
- package/dist/esm/TableServiceClient.d.ts.map +1 -1
- package/dist/esm/TableServiceClient.js.map +1 -1
- package/dist/react-native/TableClient.d.ts +30 -24
- package/dist/react-native/TableClient.d.ts.map +1 -1
- package/dist/react-native/TableClient.js +30 -20
- package/dist/react-native/TableClient.js.map +1 -1
- package/dist/react-native/TableServiceClient.d.ts +0 -4
- package/dist/react-native/TableServiceClient.d.ts.map +1 -1
- package/dist/react-native/TableServiceClient.js.map +1 -1
- package/package.json +6 -2
|
@@ -94,10 +94,6 @@ export declare class TableClient {
|
|
|
94
94
|
* import { DefaultAzureCredential } from "@azure/identity";
|
|
95
95
|
* import { TableClient } from "@azure/data-tables";
|
|
96
96
|
*
|
|
97
|
-
* // DefaultAzureCredential expects the following three environment variables:
|
|
98
|
-
* // - AZURE_TENANT_ID: The tenant ID in Azure Active Directory
|
|
99
|
-
* // - AZURE_CLIENT_ID: The application (client) ID registered in the AAD tenant
|
|
100
|
-
* // - AZURE_CLIENT_SECRET: The client secret for the registered application
|
|
101
97
|
* const credential = new DefaultAzureCredential();
|
|
102
98
|
* const account = "<account name>";
|
|
103
99
|
* const tableName = "<tableName>";
|
|
@@ -141,13 +137,14 @@ export declare class TableClient {
|
|
|
141
137
|
*
|
|
142
138
|
* ### Example deleting a table
|
|
143
139
|
* ```ts snippet:ReadmeSampleDeleteTable
|
|
144
|
-
* import {
|
|
140
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
141
|
+
* import { TableClient } from "@azure/data-tables";
|
|
145
142
|
*
|
|
146
143
|
* const account = "<account>";
|
|
147
144
|
* const accountKey = "<accountkey>";
|
|
148
145
|
* const tableName = "<tableName>";
|
|
149
146
|
*
|
|
150
|
-
* const credential = new
|
|
147
|
+
* const credential = new DefaultAzureCredential();
|
|
151
148
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
152
149
|
*
|
|
153
150
|
* await client.deleteTable();
|
|
@@ -160,13 +157,14 @@ export declare class TableClient {
|
|
|
160
157
|
*
|
|
161
158
|
* ### Example creating a table
|
|
162
159
|
* ```ts snippet:ReadmeSampleTableClientCreateTable
|
|
163
|
-
* import {
|
|
160
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
161
|
+
* import { TableClient } from "@azure/data-tables";
|
|
164
162
|
*
|
|
165
163
|
* const account = "<account>";
|
|
166
164
|
* const accountKey = "<accountkey>";
|
|
167
165
|
* const tableName = "<tableName>";
|
|
168
166
|
*
|
|
169
|
-
* const credential = new
|
|
167
|
+
* const credential = new DefaultAzureCredential();
|
|
170
168
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
171
169
|
*
|
|
172
170
|
* // If the table 'newTable' already exists, createTable doesn't throw
|
|
@@ -182,13 +180,14 @@ export declare class TableClient {
|
|
|
182
180
|
*
|
|
183
181
|
* ### Example getting an entity
|
|
184
182
|
* ```ts snippet:ReadmeSampleGetEntity
|
|
185
|
-
* import {
|
|
183
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
184
|
+
* import { TableClient } from "@azure/data-tables";
|
|
186
185
|
*
|
|
187
186
|
* const account = "<account>";
|
|
188
187
|
* const accountKey = "<accountkey>";
|
|
189
188
|
* const tableName = "<tableName>";
|
|
190
189
|
*
|
|
191
|
-
* const credential = new
|
|
190
|
+
* const credential = new DefaultAzureCredential();
|
|
192
191
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
193
192
|
*
|
|
194
193
|
* const entity = await client.getEntity("<partitionKey>", "<rowKey>");
|
|
@@ -202,13 +201,14 @@ export declare class TableClient {
|
|
|
202
201
|
*
|
|
203
202
|
* Example listing entities
|
|
204
203
|
* ```ts snippet:ReadmeSampleListEntities
|
|
205
|
-
* import {
|
|
204
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
205
|
+
* import { TableClient } from "@azure/data-tables";
|
|
206
206
|
*
|
|
207
207
|
* const account = "<account>";
|
|
208
208
|
* const accountKey = "<accountkey>";
|
|
209
209
|
* const tableName = "<tableName>";
|
|
210
210
|
*
|
|
211
|
-
* const credential = new
|
|
211
|
+
* const credential = new DefaultAzureCredential();
|
|
212
212
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
213
213
|
*
|
|
214
214
|
* let i = 0;
|
|
@@ -229,13 +229,14 @@ export declare class TableClient {
|
|
|
229
229
|
*
|
|
230
230
|
* ### Example creating an entity
|
|
231
231
|
* ```ts snippet:ReadmeSampleCreateEntity
|
|
232
|
-
* import {
|
|
232
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
233
|
+
* import { TableClient } from "@azure/data-tables";
|
|
233
234
|
*
|
|
234
235
|
* const account = "<account>";
|
|
235
236
|
* const accountKey = "<accountkey>";
|
|
236
237
|
* const tableName = "<tableName>";
|
|
237
238
|
*
|
|
238
|
-
* const credential = new
|
|
239
|
+
* const credential = new DefaultAzureCredential();
|
|
239
240
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
240
241
|
*
|
|
241
242
|
* const testEntity = {
|
|
@@ -256,13 +257,14 @@ export declare class TableClient {
|
|
|
256
257
|
*
|
|
257
258
|
* ### Example deleting an entity
|
|
258
259
|
* ```ts snippet:ReadmeSampleDeleteEntity
|
|
259
|
-
* import {
|
|
260
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
261
|
+
* import { TableClient } from "@azure/data-tables";
|
|
260
262
|
*
|
|
261
263
|
* const account = "<account>";
|
|
262
264
|
* const accountKey = "<accountkey>";
|
|
263
265
|
* const tableName = "<tableName>";
|
|
264
266
|
*
|
|
265
|
-
* const credential = new
|
|
267
|
+
* const credential = new DefaultAzureCredential();
|
|
266
268
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
267
269
|
*
|
|
268
270
|
* // deleteEntity deletes the entity that matches exactly the partitionKey and rowKey
|
|
@@ -280,13 +282,14 @@ export declare class TableClient {
|
|
|
280
282
|
*
|
|
281
283
|
* ### Example updating an entity
|
|
282
284
|
* ```ts snippet:ReadmeSampleUpdateEntity
|
|
283
|
-
* import {
|
|
285
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
286
|
+
* import { TableClient } from "@azure/data-tables";
|
|
284
287
|
*
|
|
285
288
|
* const account = "<account>";
|
|
286
289
|
* const accountKey = "<accountkey>";
|
|
287
290
|
* const tableName = "<tableName>";
|
|
288
291
|
*
|
|
289
|
-
* const credential = new
|
|
292
|
+
* const credential = new DefaultAzureCredential();
|
|
290
293
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
291
294
|
*
|
|
292
295
|
* const entity = { partitionKey: "p1", rowKey: "r1", bar: "updatedBar" };
|
|
@@ -317,13 +320,14 @@ export declare class TableClient {
|
|
|
317
320
|
*
|
|
318
321
|
* ### Example upserting an entity
|
|
319
322
|
* ```ts snippet:ReadmeSampleUpsertEntity
|
|
320
|
-
* import {
|
|
323
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
324
|
+
* import { TableClient } from "@azure/data-tables";
|
|
321
325
|
*
|
|
322
326
|
* const account = "<account>";
|
|
323
327
|
* const accountKey = "<accountkey>";
|
|
324
328
|
* const tableName = "<tableName>";
|
|
325
329
|
*
|
|
326
|
-
* const credential = new
|
|
330
|
+
* const credential = new DefaultAzureCredential();
|
|
327
331
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
328
332
|
*
|
|
329
333
|
* const entity = { partitionKey: "p1", rowKey: "r1", bar: "updatedBar" };
|
|
@@ -358,13 +362,14 @@ export declare class TableClient {
|
|
|
358
362
|
*
|
|
359
363
|
* Example usage:
|
|
360
364
|
* ```ts snippet:ReadmeSampleSubmitTransaction
|
|
361
|
-
* import {
|
|
365
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
366
|
+
* import { TableClient, TransactionAction } from "@azure/data-tables";
|
|
362
367
|
*
|
|
363
368
|
* const account = "<account>";
|
|
364
369
|
* const accountKey = "<accountkey>";
|
|
365
370
|
* const tableName = "<tableName>";
|
|
366
371
|
*
|
|
367
|
-
* const credential = new
|
|
372
|
+
* const credential = new DefaultAzureCredential();
|
|
368
373
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
369
374
|
*
|
|
370
375
|
* const actions: TransactionAction[] = [
|
|
@@ -377,13 +382,14 @@ export declare class TableClient {
|
|
|
377
382
|
*
|
|
378
383
|
* Example usage with TableTransaction:
|
|
379
384
|
* ```ts snippet:ReadmeSampleSubmitTransactionWithTableTransaction
|
|
380
|
-
* import {
|
|
385
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
386
|
+
* import { TableClient, TableTransaction } from "@azure/data-tables";
|
|
381
387
|
*
|
|
382
388
|
* const account = "<account>";
|
|
383
389
|
* const accountKey = "<accountkey>";
|
|
384
390
|
* const tableName = "<tableName>";
|
|
385
391
|
*
|
|
386
|
-
* const credential = new
|
|
392
|
+
* const credential = new DefaultAzureCredential();
|
|
387
393
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
388
394
|
*
|
|
389
395
|
* const transaction = new TableTransaction();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableClient.d.ts","sourceRoot":"","sources":["../../src/TableClient.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,yBAAyB,EACzB,wBAAwB,EACxB,uBAAuB,EACvB,qBAAqB,EACrB,sBAAsB,EACtB,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,IAAI,kBAAkB,EAC/C,WAAW,EAEX,iBAAiB,EACjB,qBAAqB,EACrB,wBAAwB,EACxB,iBAAiB,EACjB,UAAU,EACV,wBAAwB,EACzB,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EACV,yBAAyB,EACzB,uBAAuB,EACvB,oBAAoB,EACpB,oBAAoB,EACrB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAGV,gBAAgB,EAGjB,MAAM,oBAAoB,CAAC;AAG5B,OAAO,KAAK,EAAE,kBAAkB,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAgB3F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAiB1D;;;GAGG;AACH,qBAAa,WAAW;IACtB;;OAEG;IACI,GAAG,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACI,QAAQ,EAAE,QAAQ,CAAC;IAC1B,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,eAAe,CAAgB;IACvC,OAAO,CAAC,UAAU,CAAC,CAAuD;IAC1E,OAAO,CAAC,aAAa,CAAqB;IAC1C,OAAO,CAAC,QAAQ,CAAC,uBAAuB,CAAU;IAElD;;OAEG;IACH,SAAgB,SAAS,EAAE,MAAM,CAAC;IAElC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;gBAED,GAAG,EAAE,MAAM,EACX,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,kBAAkB,EAC9B,OAAO,CAAC,EAAE,kBAAkB;IAE9B;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;gBAED,GAAG,EAAE,MAAM,EACX,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,aAAa,EACzB,OAAO,CAAC,EAAE,kBAAkB;IAE9B
|
|
1
|
+
{"version":3,"file":"TableClient.d.ts","sourceRoot":"","sources":["../../src/TableClient.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/TableClient.js
CHANGED
|
@@ -70,13 +70,14 @@ export class TableClient {
|
|
|
70
70
|
*
|
|
71
71
|
* ### Example deleting a table
|
|
72
72
|
* ```ts snippet:ReadmeSampleDeleteTable
|
|
73
|
-
* import {
|
|
73
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
74
|
+
* import { TableClient } from "@azure/data-tables";
|
|
74
75
|
*
|
|
75
76
|
* const account = "<account>";
|
|
76
77
|
* const accountKey = "<accountkey>";
|
|
77
78
|
* const tableName = "<tableName>";
|
|
78
79
|
*
|
|
79
|
-
* const credential = new
|
|
80
|
+
* const credential = new DefaultAzureCredential();
|
|
80
81
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
81
82
|
*
|
|
82
83
|
* await client.deleteTable();
|
|
@@ -103,13 +104,14 @@ export class TableClient {
|
|
|
103
104
|
*
|
|
104
105
|
* ### Example creating a table
|
|
105
106
|
* ```ts snippet:ReadmeSampleTableClientCreateTable
|
|
106
|
-
* import {
|
|
107
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
108
|
+
* import { TableClient } from "@azure/data-tables";
|
|
107
109
|
*
|
|
108
110
|
* const account = "<account>";
|
|
109
111
|
* const accountKey = "<accountkey>";
|
|
110
112
|
* const tableName = "<tableName>";
|
|
111
113
|
*
|
|
112
|
-
* const credential = new
|
|
114
|
+
* const credential = new DefaultAzureCredential();
|
|
113
115
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
114
116
|
*
|
|
115
117
|
* // If the table 'newTable' already exists, createTable doesn't throw
|
|
@@ -134,13 +136,14 @@ export class TableClient {
|
|
|
134
136
|
*
|
|
135
137
|
* ### Example getting an entity
|
|
136
138
|
* ```ts snippet:ReadmeSampleGetEntity
|
|
137
|
-
* import {
|
|
139
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
140
|
+
* import { TableClient } from "@azure/data-tables";
|
|
138
141
|
*
|
|
139
142
|
* const account = "<account>";
|
|
140
143
|
* const accountKey = "<accountkey>";
|
|
141
144
|
* const tableName = "<tableName>";
|
|
142
145
|
*
|
|
143
|
-
* const credential = new
|
|
146
|
+
* const credential = new DefaultAzureCredential();
|
|
144
147
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
145
148
|
*
|
|
146
149
|
* const entity = await client.getEntity("<partitionKey>", "<rowKey>");
|
|
@@ -170,13 +173,14 @@ export class TableClient {
|
|
|
170
173
|
*
|
|
171
174
|
* Example listing entities
|
|
172
175
|
* ```ts snippet:ReadmeSampleListEntities
|
|
173
|
-
* import {
|
|
176
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
177
|
+
* import { TableClient } from "@azure/data-tables";
|
|
174
178
|
*
|
|
175
179
|
* const account = "<account>";
|
|
176
180
|
* const accountKey = "<accountkey>";
|
|
177
181
|
* const tableName = "<tableName>";
|
|
178
182
|
*
|
|
179
|
-
* const credential = new
|
|
183
|
+
* const credential = new DefaultAzureCredential();
|
|
180
184
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
181
185
|
*
|
|
182
186
|
* let i = 0;
|
|
@@ -273,13 +277,14 @@ export class TableClient {
|
|
|
273
277
|
*
|
|
274
278
|
* ### Example creating an entity
|
|
275
279
|
* ```ts snippet:ReadmeSampleCreateEntity
|
|
276
|
-
* import {
|
|
280
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
281
|
+
* import { TableClient } from "@azure/data-tables";
|
|
277
282
|
*
|
|
278
283
|
* const account = "<account>";
|
|
279
284
|
* const accountKey = "<accountkey>";
|
|
280
285
|
* const tableName = "<tableName>";
|
|
281
286
|
*
|
|
282
|
-
* const credential = new
|
|
287
|
+
* const credential = new DefaultAzureCredential();
|
|
283
288
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
284
289
|
*
|
|
285
290
|
* const testEntity = {
|
|
@@ -305,13 +310,14 @@ export class TableClient {
|
|
|
305
310
|
*
|
|
306
311
|
* ### Example deleting an entity
|
|
307
312
|
* ```ts snippet:ReadmeSampleDeleteEntity
|
|
308
|
-
* import {
|
|
313
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
314
|
+
* import { TableClient } from "@azure/data-tables";
|
|
309
315
|
*
|
|
310
316
|
* const account = "<account>";
|
|
311
317
|
* const accountKey = "<accountkey>";
|
|
312
318
|
* const tableName = "<tableName>";
|
|
313
319
|
*
|
|
314
|
-
* const credential = new
|
|
320
|
+
* const credential = new DefaultAzureCredential();
|
|
315
321
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
316
322
|
*
|
|
317
323
|
* // deleteEntity deletes the entity that matches exactly the partitionKey and rowKey
|
|
@@ -337,13 +343,14 @@ export class TableClient {
|
|
|
337
343
|
*
|
|
338
344
|
* ### Example updating an entity
|
|
339
345
|
* ```ts snippet:ReadmeSampleUpdateEntity
|
|
340
|
-
* import {
|
|
346
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
347
|
+
* import { TableClient } from "@azure/data-tables";
|
|
341
348
|
*
|
|
342
349
|
* const account = "<account>";
|
|
343
350
|
* const accountKey = "<accountkey>";
|
|
344
351
|
* const tableName = "<tableName>";
|
|
345
352
|
*
|
|
346
|
-
* const credential = new
|
|
353
|
+
* const credential = new DefaultAzureCredential();
|
|
347
354
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
348
355
|
*
|
|
349
356
|
* const entity = { partitionKey: "p1", rowKey: "r1", bar: "updatedBar" };
|
|
@@ -393,13 +400,14 @@ export class TableClient {
|
|
|
393
400
|
*
|
|
394
401
|
* ### Example upserting an entity
|
|
395
402
|
* ```ts snippet:ReadmeSampleUpsertEntity
|
|
396
|
-
* import {
|
|
403
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
404
|
+
* import { TableClient } from "@azure/data-tables";
|
|
397
405
|
*
|
|
398
406
|
* const account = "<account>";
|
|
399
407
|
* const accountKey = "<accountkey>";
|
|
400
408
|
* const tableName = "<tableName>";
|
|
401
409
|
*
|
|
402
|
-
* const credential = new
|
|
410
|
+
* const credential = new DefaultAzureCredential();
|
|
403
411
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
404
412
|
*
|
|
405
413
|
* const entity = { partitionKey: "p1", rowKey: "r1", bar: "updatedBar" };
|
|
@@ -460,13 +468,14 @@ export class TableClient {
|
|
|
460
468
|
*
|
|
461
469
|
* Example usage:
|
|
462
470
|
* ```ts snippet:ReadmeSampleSubmitTransaction
|
|
463
|
-
* import {
|
|
471
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
472
|
+
* import { TableClient, TransactionAction } from "@azure/data-tables";
|
|
464
473
|
*
|
|
465
474
|
* const account = "<account>";
|
|
466
475
|
* const accountKey = "<accountkey>";
|
|
467
476
|
* const tableName = "<tableName>";
|
|
468
477
|
*
|
|
469
|
-
* const credential = new
|
|
478
|
+
* const credential = new DefaultAzureCredential();
|
|
470
479
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
471
480
|
*
|
|
472
481
|
* const actions: TransactionAction[] = [
|
|
@@ -479,13 +488,14 @@ export class TableClient {
|
|
|
479
488
|
*
|
|
480
489
|
* Example usage with TableTransaction:
|
|
481
490
|
* ```ts snippet:ReadmeSampleSubmitTransactionWithTableTransaction
|
|
482
|
-
* import {
|
|
491
|
+
* import { DefaultAzureCredential } from "@azure/identity";
|
|
492
|
+
* import { TableClient, TableTransaction } from "@azure/data-tables";
|
|
483
493
|
*
|
|
484
494
|
* const account = "<account>";
|
|
485
495
|
* const accountKey = "<accountkey>";
|
|
486
496
|
* const tableName = "<tableName>";
|
|
487
497
|
*
|
|
488
|
-
* const credential = new
|
|
498
|
+
* const credential = new DefaultAzureCredential();
|
|
489
499
|
* const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);
|
|
490
500
|
*
|
|
491
501
|
* const transaction = new TableTransaction();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableClient.js","sourceRoot":"","sources":["../../src/TableClient.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type {\n CreateTableEntityResponse,\n DeleteTableEntityOptions,\n GetAccessPolicyResponse,\n GetTableEntityOptions,\n GetTableEntityResponse,\n ListTableEntitiesOptions,\n SignedIdentifier,\n TableServiceClientOptions as TableClientOptions,\n TableEntity,\n TableEntityQueryOptions,\n TableEntityResult,\n TableEntityResultPage,\n TableTransactionResponse,\n TransactionAction,\n UpdateMode,\n UpdateTableEntityOptions,\n} from \"./models.js\";\nimport type {\n DeleteTableEntityResponse,\n SetAccessPolicyResponse,\n UpdateEntityResponse,\n UpsertEntityResponse,\n} from \"./generatedModels.js\";\nimport type {\n FullOperationResponse,\n InternalClientPipelineOptions,\n OperationOptions,\n ServiceClient,\n ServiceClientOptions,\n} from \"@azure/core-client\";\nimport type { TableDeleteEntityOptionalParams } from \"./generated/index.js\";\nimport { GeneratedClient } from \"./generated/index.js\";\nimport type { NamedKeyCredential, SASCredential, TokenCredential } from \"@azure/core-auth\";\nimport { isNamedKeyCredential, isSASCredential, isTokenCredential } from \"@azure/core-auth\";\nimport { COSMOS_SCOPE, STORAGE_SCOPE, TablesLoggingAllowedHeaderNames } from \"./utils/constants.js\";\nimport { decodeContinuationToken, encodeContinuationToken } from \"./utils/continuationToken.js\";\nimport {\n deserialize,\n deserializeObjectsArray,\n deserializeSignedIdentifier,\n serialize,\n serializeQueryOptions,\n serializeSignedIdentifiers,\n} from \"./serialization.js\";\nimport { parseXML, stringifyXML } from \"@azure/core-xml\";\n\nimport { InternalTableTransaction } from \"./TableTransaction.js\";\nimport type { ListEntitiesResponse } from \"./utils/internalModels.js\";\nimport type { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport type { Pipeline } from \"@azure/core-rest-pipeline\";\nimport type { Table } from \"./generated/operationsInterfaces/index.js\";\nimport type { TableQueryEntitiesOptionalParams } from \"./generated/models/index.js\";\nimport { Uuid } from \"./utils/uuid.js\";\nimport { apiVersionPolicy } from \"./utils/apiVersionPolicy.js\";\nimport { cosmosPatchPolicy } from \"./cosmosPathPolicy.js\";\nimport { escapeQuotes } from \"./odata.js\";\nimport { getClientParamsFromConnectionString } from \"./utils/connectionString.js\";\nimport { handleTableAlreadyExists } from \"./utils/errorHelpers.js\";\nimport { isCosmosEndpoint } from \"./utils/isCosmosEndpoint.js\";\nimport { isCredential } from \"./utils/isCredential.js\";\nimport { logger } from \"./logger.js\";\nimport { setTokenChallengeAuthenticationPolicy } from \"./utils/challengeAuthenticationUtils.js\";\nimport { tablesNamedKeyCredentialPolicy } from \"./tablesNamedCredentialPolicy.js\";\nimport { tablesSASTokenPolicy } from \"./tablesSASTokenPolicy.js\";\nimport { tracingClient } from \"./utils/tracing.js\";\n\n/**\n * A TableClient represents a Client to the Azure Tables service allowing you\n * to perform operations on a single table.\n */\nexport class TableClient {\n /**\n * Table Account URL\n */\n public url: string;\n /**\n * Represents a pipeline for making a HTTP request to a URL.\n * Pipelines can have multiple policies to manage manipulating each request before and after it is made to the server.\n */\n public pipeline: Pipeline;\n private table: Table;\n private generatedClient: ServiceClient;\n private credential?: NamedKeyCredential | SASCredential | TokenCredential;\n private clientOptions: TableClientOptions;\n private readonly allowInsecureConnection: boolean;\n\n /**\n * Name of the table to perform operations on.\n */\n public readonly tableName: string;\n\n /**\n * Creates a new instance of the TableClient class.\n *\n * @param url - The URL of the service account that is the target of the desired operation, such as \"https://myaccount.table.core.windows.net\".\n * @param tableName - the name of the table\n * @param credential - NamedKeyCredential used to authenticate requests. Only Supported for Node\n * @param options - Optional. Options to configure the HTTP pipeline.\n *\n *\n * ### Example using an account name/key:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_NamedKeyCredential\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * // Enter your storage account name and shared key\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * // Use AzureNamedKeyCredential with storage account and account key\n * // AzureNamedKeyCredential is only available in Node.js runtime, not in browsers\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n * ```\n */\n constructor(\n url: string,\n tableName: string,\n credential: NamedKeyCredential,\n options?: TableClientOptions,\n );\n /**\n * Creates a new instance of the TableClient class.\n *\n * @param url - The URL of the service account that is the target of the desired operation, such as \"https://myaccount.table.core.windows.net\".\n * @param tableName - the name of the table\n * @param credential - SASCredential used to authenticate requests\n * @param options - Optional. Options to configure the HTTP pipeline.\n *\n *\n * ### Example using a SAS Token:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_SASToken\n * import { TableClient, AzureSASCredential } from \"@azure/data-tables\";\n *\n * const account = \"<account name>\";\n * const sas = \"<service Shared Access Signature Token>\";\n * const tableName = \"<tableName>\";\n *\n * const clientWithSAS = new TableClient(\n * `https://${account}.table.core.windows.net`,\n * tableName,\n * new AzureSASCredential(sas),\n * );\n * ```\n */\n constructor(\n url: string,\n tableName: string,\n credential: SASCredential,\n options?: TableClientOptions,\n );\n /**\n * Creates a new instance of the TableClient class.\n *\n * @param url - The URL of the service account that is the target of the desired operation, such as \"https://myaccount.table.core.windows.net\".\n * @param tableName - the name of the table\n * @param credential - Azure Active Directory credential used to authenticate requests\n * @param options - Optional. Options to configure the HTTP pipeline.\n *\n *\n * ### Example using an Azure Active Directory credential:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_TokenCredential\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * // DefaultAzureCredential expects the following three environment variables:\n * // - AZURE_TENANT_ID: The tenant ID in Azure Active Directory\n * // - AZURE_CLIENT_ID: The application (client) ID registered in the AAD tenant\n * // - AZURE_CLIENT_SECRET: The client secret for the registered application\n * const credential = new DefaultAzureCredential();\n * const account = \"<account name>\";\n * const tableName = \"<tableName>\";\n *\n * const clientWithAAD = new TableClient(\n * `https://${account}.table.core.windows.net`,\n * tableName,\n * credential,\n * );\n * ```\n */\n constructor(\n url: string,\n tableName: string,\n credential: TokenCredential,\n options?: TableClientOptions,\n );\n /**\n * Creates an instance of TableClient.\n *\n * @param url - A Client string pointing to Azure Storage table service, such as\n * \"https://myaccount.table.core.windows.net\". You can append a SAS,\n * such as \"https://myaccount.table.core.windows.net?sasString\".\n * @param tableName - the name of the table\n * @param options - Options to configure the HTTP pipeline.\n *\n * ### Example appending a SAS token:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_SASTokenURL\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account name>\";\n * const sasToken = \"<SAS token>\";\n * const tableName = \"<tableName>\";\n *\n * const clientWithSAS = new TableClient(\n * `https://${account}.table.core.windows.net?${sasToken}`,\n * tableName,\n * );\n * ```\n */\n constructor(url: string, tableName: string, options?: TableClientOptions);\n constructor(\n url: string,\n tableName: string,\n credentialOrOptions?: NamedKeyCredential | SASCredential | TableClientOptions | TokenCredential,\n options: TableClientOptions = {},\n ) {\n this.url = url;\n this.tableName = tableName;\n const isCosmos = isCosmosEndpoint(this.url);\n\n const credential = isCredential(credentialOrOptions) ? credentialOrOptions : undefined;\n this.credential = credential;\n\n this.clientOptions = (!isCredential(credentialOrOptions) ? credentialOrOptions : options) || {};\n\n this.allowInsecureConnection = this.clientOptions.allowInsecureConnection ?? false;\n\n const internalPipelineOptions: ServiceClientOptions & InternalClientPipelineOptions = {\n ...this.clientOptions,\n endpoint: this.clientOptions.endpoint || this.url,\n loggingOptions: {\n logger: logger.info,\n additionalAllowedHeaderNames: [...TablesLoggingAllowedHeaderNames],\n },\n deserializationOptions: {\n parseXML,\n },\n serializationOptions: {\n stringifyXML,\n },\n };\n\n const generatedClient = new GeneratedClient(this.url, internalPipelineOptions);\n if (isNamedKeyCredential(credential)) {\n generatedClient.pipeline.addPolicy(tablesNamedKeyCredentialPolicy(credential));\n } else if (isSASCredential(credential)) {\n generatedClient.pipeline.addPolicy(tablesSASTokenPolicy(credential));\n }\n\n if (isTokenCredential(credential)) {\n const scope = isCosmos ? COSMOS_SCOPE : STORAGE_SCOPE;\n setTokenChallengeAuthenticationPolicy(generatedClient.pipeline, credential, scope);\n }\n\n if (isCosmos) {\n generatedClient.pipeline.addPolicy(cosmosPatchPolicy());\n }\n\n if (options.version) {\n generatedClient.pipeline.addPolicy(apiVersionPolicy(options.version));\n }\n\n this.generatedClient = generatedClient;\n this.table = generatedClient.table;\n this.pipeline = generatedClient.pipeline;\n }\n\n /**\n * Permanently deletes the current table with all of its entities.\n * @param options - The options parameters.\n *\n * ### Example deleting a table\n * ```ts snippet:ReadmeSampleDeleteTable\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * await client.deleteTable();\n * ```\n */\n public deleteTable(options: OperationOptions = {}): Promise<void> {\n return tracingClient.withSpan(\"TableClient.deleteTable\", options, async (updatedOptions) => {\n try {\n await this.table.delete(this.tableName, updatedOptions);\n } catch (e: any) {\n if (e.statusCode === 404) {\n logger.info(\"TableClient.deleteTable: Table doesn't exist\");\n } else {\n throw e;\n }\n }\n });\n }\n\n /**\n * Creates a table with the tableName passed to the client constructor\n * @param options - The options parameters.\n *\n * ### Example creating a table\n * ```ts snippet:ReadmeSampleTableClientCreateTable\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * // If the table 'newTable' already exists, createTable doesn't throw\n * await client.createTable();\n * ```\n */\n public createTable(options: OperationOptions = {}): Promise<void> {\n return tracingClient.withSpan(\"TableClient.createTable\", options, async (updatedOptions) => {\n try {\n await this.table.create({ name: this.tableName }, updatedOptions);\n } catch (e: any) {\n handleTableAlreadyExists(e, { ...updatedOptions, logger, tableName: this.tableName });\n }\n });\n }\n\n /**\n * Returns a single entity in the table.\n * @param partitionKey - The partition key of the entity.\n * @param rowKey - The row key of the entity.\n * @param options - The options parameters.\n *\n * ### Example getting an entity\n * ```ts snippet:ReadmeSampleGetEntity\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const entity = await client.getEntity(\"<partitionKey>\", \"<rowKey>\");\n * console.log(`Entity: PartitionKey: ${entity.partitionKey} RowKey: ${entity.rowKey}`);\n * ```\n */\n public getEntity<T extends object = Record<string, unknown>>(\n partitionKey: string,\n rowKey: string,\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: GetTableEntityOptions = {},\n ): Promise<GetTableEntityResponse<TableEntityResult<T>>> {\n return tracingClient.withSpan(\"TableClient.getEntity\", options, async (updatedOptions) => {\n let parsedBody: any;\n function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void {\n parsedBody = rawResponse.parsedBody;\n if (updatedOptions.onResponse) {\n updatedOptions.onResponse(rawResponse, flatResponse);\n }\n }\n const { disableTypeConversion, queryOptions, ...getEntityOptions } = updatedOptions;\n await this.table.queryEntitiesWithPartitionAndRowKey(\n this.tableName,\n escapeQuotes(partitionKey),\n escapeQuotes(rowKey),\n {\n ...getEntityOptions,\n queryOptions: serializeQueryOptions(queryOptions || {}),\n onResponse,\n },\n );\n const tableEntity = deserialize<TableEntityResult<T>>(\n parsedBody,\n disableTypeConversion ?? false,\n );\n\n return tableEntity;\n });\n }\n\n /**\n * Queries entities in a table.\n * @param options - The options parameters.\n *\n * Example listing entities\n * ```ts snippet:ReadmeSampleListEntities\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * let i = 0;\n * const entities = client.listEntities();\n * for await (const entity of entities) {\n * console.log(`Entity${++i}: PartitionKey: ${entity.partitionKey} RowKey: ${entity.rowKey}`);\n * }\n * ```\n */\n public listEntities<T extends object = Record<string, unknown>>(\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: ListTableEntitiesOptions = {},\n ): PagedAsyncIterableIterator<TableEntityResult<T>, TableEntityResultPage<T>> {\n const tableName = this.tableName;\n const iter = this.listEntitiesAll<T>(tableName, options);\n\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings) => {\n const pageOptions: InternalListTableEntitiesOptions = {\n ...options,\n queryOptions: { ...options.queryOptions, top: settings?.maxPageSize },\n };\n\n if (settings?.continuationToken) {\n pageOptions.continuationToken = settings.continuationToken;\n }\n\n return this.listEntitiesPage(tableName, pageOptions);\n },\n };\n }\n\n private async *listEntitiesAll<T extends object>(\n tableName: string,\n options?: InternalListTableEntitiesOptions,\n ): AsyncIterableIterator<TableEntityResult<T>> {\n const firstPage = await this._listEntities<T>(tableName, options);\n yield* firstPage;\n if (firstPage.continuationToken) {\n const optionsWithContinuation: InternalListTableEntitiesOptions = {\n ...options,\n continuationToken: firstPage.continuationToken,\n };\n for await (const page of this.listEntitiesPage<T>(tableName, optionsWithContinuation)) {\n yield* page;\n }\n }\n }\n\n private async *listEntitiesPage<T extends object>(\n tableName: string,\n options: InternalListTableEntitiesOptions = {},\n ): AsyncIterableIterator<ListEntitiesResponse<TableEntityResult<T>>> {\n let result = await tracingClient.withSpan(\n \"TableClient.listEntitiesPage\",\n options,\n (updatedOptions) => this._listEntities<T>(tableName, updatedOptions),\n );\n\n yield result;\n\n while (result.continuationToken) {\n const optionsWithContinuation: InternalListTableEntitiesOptions = {\n ...options,\n continuationToken: result.continuationToken,\n };\n\n result = await tracingClient.withSpan(\n \"TableClient.listEntitiesPage\",\n optionsWithContinuation,\n (updatedOptions, span) => {\n span.setAttribute(\"continuationToken\", result.continuationToken);\n return this._listEntities<T>(tableName, updatedOptions);\n },\n );\n yield result;\n }\n }\n\n private async _listEntities<T extends object>(\n tableName: string,\n options: InternalListTableEntitiesOptions = {},\n ): Promise<TableEntityResultPage<T>> {\n const { disableTypeConversion = false } = options;\n const queryOptions = serializeQueryOptions(options.queryOptions || {});\n const listEntitiesOptions: TableQueryEntitiesOptionalParams = {\n ...options,\n queryOptions,\n };\n\n // If a continuation token is used, decode it and set the next row and partition key\n if (options.continuationToken) {\n const continuationToken = decodeContinuationToken(options.continuationToken);\n listEntitiesOptions.nextRowKey = continuationToken.nextRowKey;\n listEntitiesOptions.nextPartitionKey = continuationToken.nextPartitionKey;\n }\n\n const {\n xMsContinuationNextPartitionKey: nextPartitionKey,\n xMsContinuationNextRowKey: nextRowKey,\n value,\n } = await this.table.queryEntities(tableName, listEntitiesOptions);\n\n const tableEntities = deserializeObjectsArray<TableEntityResult<T>>(\n value ?? [],\n disableTypeConversion,\n );\n\n // Encode nextPartitionKey and nextRowKey as a single continuation token and add it as a\n // property to the page.\n const continuationToken = encodeContinuationToken(nextPartitionKey, nextRowKey);\n const page: TableEntityResultPage<T> = Object.assign([...tableEntities], {\n continuationToken,\n });\n\n return page;\n }\n\n /**\n * Insert entity in the table.\n * @param entity - The properties for the table entity.\n * @param options - The options parameters.\n *\n * ### Example creating an entity\n * ```ts snippet:ReadmeSampleCreateEntity\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const testEntity = {\n * partitionKey: \"P1\",\n * rowKey: \"R1\",\n * foo: \"foo\",\n * bar: 123,\n * };\n * await client.createEntity(testEntity);\n * ```\n */\n public createEntity<T extends object>(\n entity: TableEntity<T>,\n options: OperationOptions = {},\n ): Promise<CreateTableEntityResponse> {\n return tracingClient.withSpan(\"TableClient.createEntity\", options, (updatedOptions) => {\n const { ...createTableEntity } = updatedOptions || {};\n return this.table.insertEntity(this.tableName, {\n ...createTableEntity,\n tableEntityProperties: serialize(entity),\n responsePreference: \"return-no-content\",\n });\n });\n }\n\n /**\n * Deletes the specified entity in the table.\n * @param partitionKey - The partition key of the entity.\n * @param rowKey - The row key of the entity.\n * @param options - The options parameters.\n *\n * ### Example deleting an entity\n * ```ts snippet:ReadmeSampleDeleteEntity\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * // deleteEntity deletes the entity that matches exactly the partitionKey and rowKey\n * await client.deleteEntity(\"<partitionKey>\", \"<rowKey>\");\n * ```\n */\n public deleteEntity(\n partitionKey: string,\n rowKey: string,\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: DeleteTableEntityOptions = {},\n ): Promise<DeleteTableEntityResponse> {\n return tracingClient.withSpan(\"TableClient.deleteEntity\", options, (updatedOptions) => {\n const { etag = \"*\", ...rest } = updatedOptions;\n const deleteOptions: TableDeleteEntityOptionalParams = {\n ...rest,\n };\n return this.table.deleteEntity(\n this.tableName,\n escapeQuotes(partitionKey),\n escapeQuotes(rowKey),\n etag,\n deleteOptions,\n );\n });\n }\n\n /**\n * Update an entity in the table.\n * @param entity - The properties of the entity to be updated.\n * @param mode - The different modes for updating the entity:\n * - Merge: Updates an entity by updating the entity's properties without replacing the existing entity.\n * - Replace: Updates an existing entity by replacing the entire entity.\n * @param options - The options parameters.\n *\n * ### Example updating an entity\n * ```ts snippet:ReadmeSampleUpdateEntity\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const entity = { partitionKey: \"p1\", rowKey: \"r1\", bar: \"updatedBar\" };\n *\n * // Update uses update mode \"Merge\" as default\n * // merge means that update will match a stored entity\n * // that has the same partitionKey and rowKey as the entity\n * // passed to the method and then will only update the properties present in it.\n * // Any other properties that are not defined in the entity passed to updateEntity\n * // will remain as they are in the service\n * await client.updateEntity(entity);\n *\n * // We can also set the update mode to Replace, which will match the entity passed\n * // to updateEntity with one stored in the service and replace with the new one.\n * // If there are any missing properties in the entity passed to updateEntity, they\n * // will be removed from the entity stored in the service\n * await client.updateEntity(entity, \"Replace\");\n * ```\n */\n public updateEntity<T extends object>(\n entity: TableEntity<T>,\n mode: UpdateMode = \"Merge\",\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: UpdateTableEntityOptions = {},\n ): Promise<UpdateEntityResponse> {\n return tracingClient.withSpan(\n \"TableClient.updateEntity\",\n options,\n async (updatedOptions) => {\n const partitionKey = escapeQuotes(entity.partitionKey);\n const rowKey = escapeQuotes(entity.rowKey);\n\n const { etag = \"*\", ...updateEntityOptions } = updatedOptions || {};\n if (mode === \"Merge\") {\n return this.table.mergeEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ifMatch: etag,\n ...updateEntityOptions,\n });\n }\n if (mode === \"Replace\") {\n return this.table.updateEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ifMatch: etag,\n ...updateEntityOptions,\n });\n }\n\n throw new Error(`Unexpected value for update mode: ${mode}`);\n },\n {\n spanAttributes: {\n updateEntityMode: mode,\n },\n },\n );\n }\n\n /**\n * Upsert an entity in the table.\n * @param entity - The properties for the table entity.\n * @param mode - The different modes for updating the entity:\n * - Merge: Updates an entity by updating the entity's properties without replacing the existing entity.\n * - Replace: Updates an existing entity by replacing the entire entity.\n * @param options - The options parameters.\n *\n * ### Example upserting an entity\n * ```ts snippet:ReadmeSampleUpsertEntity\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const entity = { partitionKey: \"p1\", rowKey: \"r1\", bar: \"updatedBar\" };\n *\n * // Upsert uses update mode \"Merge\" as default.\n * // This behaves similarly to update but creates the entity\n * // if it doesn't exist in the service\n * await client.upsertEntity(entity);\n *\n * // We can also set the update mode to Replace.\n * // This behaves similarly to update but creates the entity\n * // if it doesn't exist in the service\n * await client.upsertEntity(entity, \"Replace\");\n * ```\n */\n public upsertEntity<T extends object>(\n entity: TableEntity<T>,\n mode: UpdateMode = \"Merge\",\n options: OperationOptions = {},\n ): Promise<UpsertEntityResponse> {\n return tracingClient.withSpan(\n \"TableClient.upsertEntity\",\n options,\n async (updatedOptions) => {\n const partitionKey = escapeQuotes(entity.partitionKey);\n const rowKey = escapeQuotes(entity.rowKey);\n\n if (mode === \"Merge\") {\n return this.table.mergeEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ...updatedOptions,\n });\n }\n\n if (mode === \"Replace\") {\n return this.table.updateEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ...updatedOptions,\n });\n }\n throw new Error(`Unexpected value for update mode: ${mode}`);\n },\n {\n spanAttributes: {\n upsertEntityMode: mode,\n },\n },\n );\n }\n\n /**\n * Retrieves details about any stored access policies specified on the table that may be used with\n * Shared Access Signatures.\n * @param options - The options parameters.\n */\n public getAccessPolicy(options: OperationOptions = {}): Promise<GetAccessPolicyResponse> {\n return tracingClient.withSpan(\n \"TableClient.getAccessPolicy\",\n options,\n async (updatedOptions) => {\n const signedIdentifiers = await this.table.getAccessPolicy(this.tableName, updatedOptions);\n return deserializeSignedIdentifier(signedIdentifiers);\n },\n );\n }\n\n /**\n * Sets stored access policies for the table that may be used with Shared Access Signatures.\n * @param tableAcl - The Access Control List for the table.\n * @param options - The options parameters.\n */\n public setAccessPolicy(\n tableAcl: SignedIdentifier[],\n options: OperationOptions = {},\n ): Promise<SetAccessPolicyResponse> {\n return tracingClient.withSpan(\"TableClient.setAccessPolicy\", options, (updatedOptions) => {\n const serlializedAcl = serializeSignedIdentifiers(tableAcl);\n return this.table.setAccessPolicy(this.tableName, {\n ...updatedOptions,\n tableAcl: serlializedAcl,\n });\n });\n }\n\n /**\n * Submits a Transaction which is composed of a set of actions. You can provide the actions as a list\n * or you can use {@link TableTransaction} to help building the transaction.\n *\n * Example usage:\n * ```ts snippet:ReadmeSampleSubmitTransaction\n * import { AzureNamedKeyCredential, TableClient, TransactionAction } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const actions: TransactionAction[] = [\n * [\"create\", { partitionKey: \"p1\", rowKey: \"1\", data: \"test1\" }],\n * [\"delete\", { partitionKey: \"p1\", rowKey: \"2\" }],\n * [\"update\", { partitionKey: \"p1\", rowKey: \"3\", data: \"newTest\" }, \"Merge\"],\n * ];\n * const result = await client.submitTransaction(actions);\n * ```\n *\n * Example usage with TableTransaction:\n * ```ts snippet:ReadmeSampleSubmitTransactionWithTableTransaction\n * import { AzureNamedKeyCredential, TableClient, TableTransaction } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const transaction = new TableTransaction();\n *\n * // Call the available action in the TableTransaction object\n * transaction.createEntity({ partitionKey: \"p1\", rowKey: \"1\", data: \"test1\" });\n * transaction.deleteEntity(\"p1\", \"2\");\n * transaction.updateEntity({ partitionKey: \"p1\", rowKey: \"3\", data: \"newTest\" }, \"Merge\");\n *\n * // submitTransaction with the actions list on the transaction.\n * const result = await client.submitTransaction(transaction.actions);\n * ```\n *\n * @param actions - tuple that contains the action to perform, and the entity to perform the action with\n * @param options - Options for the request.\n */\n public async submitTransaction(\n actions: TransactionAction[],\n\n options: OperationOptions = {},\n ): Promise<TableTransactionResponse> {\n const partitionKey = actions[0][1].partitionKey;\n const transactionId = Uuid.generateUuid();\n const changesetId = Uuid.generateUuid();\n\n // Add pipeline\n const transactionClient = new InternalTableTransaction(\n this.url,\n partitionKey,\n transactionId,\n changesetId,\n this.generatedClient,\n new TableClient(this.url, this.tableName),\n this.credential,\n this.allowInsecureConnection,\n );\n\n for (const item of actions) {\n const [action, entity, updateMode = \"Merge\", updateOptions] = item;\n switch (action) {\n case \"create\":\n transactionClient.createEntity(entity);\n break;\n case \"delete\":\n transactionClient.deleteEntity(entity.partitionKey, entity.rowKey);\n break;\n case \"update\":\n transactionClient.updateEntity(entity, updateMode, updateOptions);\n break;\n case \"upsert\":\n transactionClient.upsertEntity(entity, updateMode);\n }\n }\n\n return transactionClient.submitTransaction(options);\n }\n\n /**\n *\n * Creates an instance of TableClient from connection string.\n *\n * @param connectionString - Account connection string or a SAS connection string of an Azure storage account.\n * [ Note - Account connection string can only be used in NODE.JS runtime. ]\n * Account connection string example -\n * `DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=accountKey;EndpointSuffix=core.windows.net`\n * SAS connection string example -\n * `BlobEndpoint=https://myaccount.table.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString`\n * @param options - Options to configure the HTTP pipeline.\n * @returns A new TableClient from the given connection string.\n */\n public static fromConnectionString(\n connectionString: string,\n tableName: string,\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options?: TableClientOptions,\n ): TableClient {\n const {\n url,\n options: clientOptions,\n credential,\n } = getClientParamsFromConnectionString(connectionString, options);\n if (credential) {\n return new TableClient(url, tableName, credential, clientOptions);\n } else {\n return new TableClient(url, tableName, clientOptions);\n }\n }\n}\n\ntype InternalQueryOptions = TableEntityQueryOptions & { top?: number };\ninterface InternalListTableEntitiesOptions extends ListTableEntitiesOptions {\n queryOptions?: InternalQueryOptions;\n /**\n * An entity query continuation token from a previous call.\n */\n continuationToken?: string;\n /**\n * If true, automatic type conversion will be disabled and entity properties will\n * be represented by full metadata types. For example, an Int32 value will be \\{value: \"123\", type: \"Int32\"\\} instead of 123.\n * This option applies for all the properties\n */\n disableTypeConversion?: boolean;\n}\n"]}
|
|
1
|
+
{"version":3,"file":"TableClient.js","sourceRoot":"","sources":["../../src/TableClient.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport type {\n CreateTableEntityResponse,\n DeleteTableEntityOptions,\n GetAccessPolicyResponse,\n GetTableEntityOptions,\n GetTableEntityResponse,\n ListTableEntitiesOptions,\n SignedIdentifier,\n TableServiceClientOptions as TableClientOptions,\n TableEntity,\n TableEntityQueryOptions,\n TableEntityResult,\n TableEntityResultPage,\n TableTransactionResponse,\n TransactionAction,\n UpdateMode,\n UpdateTableEntityOptions,\n} from \"./models.js\";\nimport type {\n DeleteTableEntityResponse,\n SetAccessPolicyResponse,\n UpdateEntityResponse,\n UpsertEntityResponse,\n} from \"./generatedModels.js\";\nimport type {\n FullOperationResponse,\n InternalClientPipelineOptions,\n OperationOptions,\n ServiceClient,\n ServiceClientOptions,\n} from \"@azure/core-client\";\nimport type { TableDeleteEntityOptionalParams } from \"./generated/index.js\";\nimport { GeneratedClient } from \"./generated/index.js\";\nimport type { NamedKeyCredential, SASCredential, TokenCredential } from \"@azure/core-auth\";\nimport { isNamedKeyCredential, isSASCredential, isTokenCredential } from \"@azure/core-auth\";\nimport { COSMOS_SCOPE, STORAGE_SCOPE, TablesLoggingAllowedHeaderNames } from \"./utils/constants.js\";\nimport { decodeContinuationToken, encodeContinuationToken } from \"./utils/continuationToken.js\";\nimport {\n deserialize,\n deserializeObjectsArray,\n deserializeSignedIdentifier,\n serialize,\n serializeQueryOptions,\n serializeSignedIdentifiers,\n} from \"./serialization.js\";\nimport { parseXML, stringifyXML } from \"@azure/core-xml\";\n\nimport { InternalTableTransaction } from \"./TableTransaction.js\";\nimport type { ListEntitiesResponse } from \"./utils/internalModels.js\";\nimport type { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport type { Pipeline } from \"@azure/core-rest-pipeline\";\nimport type { Table } from \"./generated/operationsInterfaces/index.js\";\nimport type { TableQueryEntitiesOptionalParams } from \"./generated/models/index.js\";\nimport { Uuid } from \"./utils/uuid.js\";\nimport { apiVersionPolicy } from \"./utils/apiVersionPolicy.js\";\nimport { cosmosPatchPolicy } from \"./cosmosPathPolicy.js\";\nimport { escapeQuotes } from \"./odata.js\";\nimport { getClientParamsFromConnectionString } from \"./utils/connectionString.js\";\nimport { handleTableAlreadyExists } from \"./utils/errorHelpers.js\";\nimport { isCosmosEndpoint } from \"./utils/isCosmosEndpoint.js\";\nimport { isCredential } from \"./utils/isCredential.js\";\nimport { logger } from \"./logger.js\";\nimport { setTokenChallengeAuthenticationPolicy } from \"./utils/challengeAuthenticationUtils.js\";\nimport { tablesNamedKeyCredentialPolicy } from \"./tablesNamedCredentialPolicy.js\";\nimport { tablesSASTokenPolicy } from \"./tablesSASTokenPolicy.js\";\nimport { tracingClient } from \"./utils/tracing.js\";\n\n/**\n * A TableClient represents a Client to the Azure Tables service allowing you\n * to perform operations on a single table.\n */\nexport class TableClient {\n /**\n * Table Account URL\n */\n public url: string;\n /**\n * Represents a pipeline for making a HTTP request to a URL.\n * Pipelines can have multiple policies to manage manipulating each request before and after it is made to the server.\n */\n public pipeline: Pipeline;\n private table: Table;\n private generatedClient: ServiceClient;\n private credential?: NamedKeyCredential | SASCredential | TokenCredential;\n private clientOptions: TableClientOptions;\n private readonly allowInsecureConnection: boolean;\n\n /**\n * Name of the table to perform operations on.\n */\n public readonly tableName: string;\n\n /**\n * Creates a new instance of the TableClient class.\n *\n * @param url - The URL of the service account that is the target of the desired operation, such as \"https://myaccount.table.core.windows.net\".\n * @param tableName - the name of the table\n * @param credential - NamedKeyCredential used to authenticate requests. Only Supported for Node\n * @param options - Optional. Options to configure the HTTP pipeline.\n *\n *\n * ### Example using an account name/key:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_NamedKeyCredential\n * import { AzureNamedKeyCredential, TableClient } from \"@azure/data-tables\";\n *\n * // Enter your storage account name and shared key\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * // Use AzureNamedKeyCredential with storage account and account key\n * // AzureNamedKeyCredential is only available in Node.js runtime, not in browsers\n * const credential = new AzureNamedKeyCredential(account, accountKey);\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n * ```\n */\n constructor(\n url: string,\n tableName: string,\n credential: NamedKeyCredential,\n options?: TableClientOptions,\n );\n /**\n * Creates a new instance of the TableClient class.\n *\n * @param url - The URL of the service account that is the target of the desired operation, such as \"https://myaccount.table.core.windows.net\".\n * @param tableName - the name of the table\n * @param credential - SASCredential used to authenticate requests\n * @param options - Optional. Options to configure the HTTP pipeline.\n *\n *\n * ### Example using a SAS Token:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_SASToken\n * import { TableClient, AzureSASCredential } from \"@azure/data-tables\";\n *\n * const account = \"<account name>\";\n * const sas = \"<service Shared Access Signature Token>\";\n * const tableName = \"<tableName>\";\n *\n * const clientWithSAS = new TableClient(\n * `https://${account}.table.core.windows.net`,\n * tableName,\n * new AzureSASCredential(sas),\n * );\n * ```\n */\n constructor(\n url: string,\n tableName: string,\n credential: SASCredential,\n options?: TableClientOptions,\n );\n /**\n * Creates a new instance of the TableClient class.\n *\n * @param url - The URL of the service account that is the target of the desired operation, such as \"https://myaccount.table.core.windows.net\".\n * @param tableName - the name of the table\n * @param credential - Azure Active Directory credential used to authenticate requests\n * @param options - Optional. Options to configure the HTTP pipeline.\n *\n *\n * ### Example using an Azure Active Directory credential:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_TokenCredential\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const credential = new DefaultAzureCredential();\n * const account = \"<account name>\";\n * const tableName = \"<tableName>\";\n *\n * const clientWithAAD = new TableClient(\n * `https://${account}.table.core.windows.net`,\n * tableName,\n * credential,\n * );\n * ```\n */\n constructor(\n url: string,\n tableName: string,\n credential: TokenCredential,\n options?: TableClientOptions,\n );\n /**\n * Creates an instance of TableClient.\n *\n * @param url - A Client string pointing to Azure Storage table service, such as\n * \"https://myaccount.table.core.windows.net\". You can append a SAS,\n * such as \"https://myaccount.table.core.windows.net?sasString\".\n * @param tableName - the name of the table\n * @param options - Options to configure the HTTP pipeline.\n *\n * ### Example appending a SAS token:\n *\n * ```ts snippet:ReadmeSampleCreateTableClient_SASTokenURL\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account name>\";\n * const sasToken = \"<SAS token>\";\n * const tableName = \"<tableName>\";\n *\n * const clientWithSAS = new TableClient(\n * `https://${account}.table.core.windows.net?${sasToken}`,\n * tableName,\n * );\n * ```\n */\n constructor(url: string, tableName: string, options?: TableClientOptions);\n constructor(\n url: string,\n tableName: string,\n credentialOrOptions?: NamedKeyCredential | SASCredential | TableClientOptions | TokenCredential,\n options: TableClientOptions = {},\n ) {\n this.url = url;\n this.tableName = tableName;\n const isCosmos = isCosmosEndpoint(this.url);\n\n const credential = isCredential(credentialOrOptions) ? credentialOrOptions : undefined;\n this.credential = credential;\n\n this.clientOptions = (!isCredential(credentialOrOptions) ? credentialOrOptions : options) || {};\n\n this.allowInsecureConnection = this.clientOptions.allowInsecureConnection ?? false;\n\n const internalPipelineOptions: ServiceClientOptions & InternalClientPipelineOptions = {\n ...this.clientOptions,\n endpoint: this.clientOptions.endpoint || this.url,\n loggingOptions: {\n logger: logger.info,\n additionalAllowedHeaderNames: [...TablesLoggingAllowedHeaderNames],\n },\n deserializationOptions: {\n parseXML,\n },\n serializationOptions: {\n stringifyXML,\n },\n };\n\n const generatedClient = new GeneratedClient(this.url, internalPipelineOptions);\n if (isNamedKeyCredential(credential)) {\n generatedClient.pipeline.addPolicy(tablesNamedKeyCredentialPolicy(credential));\n } else if (isSASCredential(credential)) {\n generatedClient.pipeline.addPolicy(tablesSASTokenPolicy(credential));\n }\n\n if (isTokenCredential(credential)) {\n const scope = isCosmos ? COSMOS_SCOPE : STORAGE_SCOPE;\n setTokenChallengeAuthenticationPolicy(generatedClient.pipeline, credential, scope);\n }\n\n if (isCosmos) {\n generatedClient.pipeline.addPolicy(cosmosPatchPolicy());\n }\n\n if (options.version) {\n generatedClient.pipeline.addPolicy(apiVersionPolicy(options.version));\n }\n\n this.generatedClient = generatedClient;\n this.table = generatedClient.table;\n this.pipeline = generatedClient.pipeline;\n }\n\n /**\n * Permanently deletes the current table with all of its entities.\n * @param options - The options parameters.\n *\n * ### Example deleting a table\n * ```ts snippet:ReadmeSampleDeleteTable\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * await client.deleteTable();\n * ```\n */\n public deleteTable(options: OperationOptions = {}): Promise<void> {\n return tracingClient.withSpan(\"TableClient.deleteTable\", options, async (updatedOptions) => {\n try {\n await this.table.delete(this.tableName, updatedOptions);\n } catch (e: any) {\n if (e.statusCode === 404) {\n logger.info(\"TableClient.deleteTable: Table doesn't exist\");\n } else {\n throw e;\n }\n }\n });\n }\n\n /**\n * Creates a table with the tableName passed to the client constructor\n * @param options - The options parameters.\n *\n * ### Example creating a table\n * ```ts snippet:ReadmeSampleTableClientCreateTable\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * // If the table 'newTable' already exists, createTable doesn't throw\n * await client.createTable();\n * ```\n */\n public createTable(options: OperationOptions = {}): Promise<void> {\n return tracingClient.withSpan(\"TableClient.createTable\", options, async (updatedOptions) => {\n try {\n await this.table.create({ name: this.tableName }, updatedOptions);\n } catch (e: any) {\n handleTableAlreadyExists(e, { ...updatedOptions, logger, tableName: this.tableName });\n }\n });\n }\n\n /**\n * Returns a single entity in the table.\n * @param partitionKey - The partition key of the entity.\n * @param rowKey - The row key of the entity.\n * @param options - The options parameters.\n *\n * ### Example getting an entity\n * ```ts snippet:ReadmeSampleGetEntity\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const entity = await client.getEntity(\"<partitionKey>\", \"<rowKey>\");\n * console.log(`Entity: PartitionKey: ${entity.partitionKey} RowKey: ${entity.rowKey}`);\n * ```\n */\n public getEntity<T extends object = Record<string, unknown>>(\n partitionKey: string,\n rowKey: string,\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: GetTableEntityOptions = {},\n ): Promise<GetTableEntityResponse<TableEntityResult<T>>> {\n return tracingClient.withSpan(\"TableClient.getEntity\", options, async (updatedOptions) => {\n let parsedBody: any;\n function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void {\n parsedBody = rawResponse.parsedBody;\n if (updatedOptions.onResponse) {\n updatedOptions.onResponse(rawResponse, flatResponse);\n }\n }\n const { disableTypeConversion, queryOptions, ...getEntityOptions } = updatedOptions;\n await this.table.queryEntitiesWithPartitionAndRowKey(\n this.tableName,\n escapeQuotes(partitionKey),\n escapeQuotes(rowKey),\n {\n ...getEntityOptions,\n queryOptions: serializeQueryOptions(queryOptions || {}),\n onResponse,\n },\n );\n const tableEntity = deserialize<TableEntityResult<T>>(\n parsedBody,\n disableTypeConversion ?? false,\n );\n\n return tableEntity;\n });\n }\n\n /**\n * Queries entities in a table.\n * @param options - The options parameters.\n *\n * Example listing entities\n * ```ts snippet:ReadmeSampleListEntities\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * let i = 0;\n * const entities = client.listEntities();\n * for await (const entity of entities) {\n * console.log(`Entity${++i}: PartitionKey: ${entity.partitionKey} RowKey: ${entity.rowKey}`);\n * }\n * ```\n */\n public listEntities<T extends object = Record<string, unknown>>(\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: ListTableEntitiesOptions = {},\n ): PagedAsyncIterableIterator<TableEntityResult<T>, TableEntityResultPage<T>> {\n const tableName = this.tableName;\n const iter = this.listEntitiesAll<T>(tableName, options);\n\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: (settings) => {\n const pageOptions: InternalListTableEntitiesOptions = {\n ...options,\n queryOptions: { ...options.queryOptions, top: settings?.maxPageSize },\n };\n\n if (settings?.continuationToken) {\n pageOptions.continuationToken = settings.continuationToken;\n }\n\n return this.listEntitiesPage(tableName, pageOptions);\n },\n };\n }\n\n private async *listEntitiesAll<T extends object>(\n tableName: string,\n options?: InternalListTableEntitiesOptions,\n ): AsyncIterableIterator<TableEntityResult<T>> {\n const firstPage = await this._listEntities<T>(tableName, options);\n yield* firstPage;\n if (firstPage.continuationToken) {\n const optionsWithContinuation: InternalListTableEntitiesOptions = {\n ...options,\n continuationToken: firstPage.continuationToken,\n };\n for await (const page of this.listEntitiesPage<T>(tableName, optionsWithContinuation)) {\n yield* page;\n }\n }\n }\n\n private async *listEntitiesPage<T extends object>(\n tableName: string,\n options: InternalListTableEntitiesOptions = {},\n ): AsyncIterableIterator<ListEntitiesResponse<TableEntityResult<T>>> {\n let result = await tracingClient.withSpan(\n \"TableClient.listEntitiesPage\",\n options,\n (updatedOptions) => this._listEntities<T>(tableName, updatedOptions),\n );\n\n yield result;\n\n while (result.continuationToken) {\n const optionsWithContinuation: InternalListTableEntitiesOptions = {\n ...options,\n continuationToken: result.continuationToken,\n };\n\n result = await tracingClient.withSpan(\n \"TableClient.listEntitiesPage\",\n optionsWithContinuation,\n (updatedOptions, span) => {\n span.setAttribute(\"continuationToken\", result.continuationToken);\n return this._listEntities<T>(tableName, updatedOptions);\n },\n );\n yield result;\n }\n }\n\n private async _listEntities<T extends object>(\n tableName: string,\n options: InternalListTableEntitiesOptions = {},\n ): Promise<TableEntityResultPage<T>> {\n const { disableTypeConversion = false } = options;\n const queryOptions = serializeQueryOptions(options.queryOptions || {});\n const listEntitiesOptions: TableQueryEntitiesOptionalParams = {\n ...options,\n queryOptions,\n };\n\n // If a continuation token is used, decode it and set the next row and partition key\n if (options.continuationToken) {\n const continuationToken = decodeContinuationToken(options.continuationToken);\n listEntitiesOptions.nextRowKey = continuationToken.nextRowKey;\n listEntitiesOptions.nextPartitionKey = continuationToken.nextPartitionKey;\n }\n\n const {\n xMsContinuationNextPartitionKey: nextPartitionKey,\n xMsContinuationNextRowKey: nextRowKey,\n value,\n } = await this.table.queryEntities(tableName, listEntitiesOptions);\n\n const tableEntities = deserializeObjectsArray<TableEntityResult<T>>(\n value ?? [],\n disableTypeConversion,\n );\n\n // Encode nextPartitionKey and nextRowKey as a single continuation token and add it as a\n // property to the page.\n const continuationToken = encodeContinuationToken(nextPartitionKey, nextRowKey);\n const page: TableEntityResultPage<T> = Object.assign([...tableEntities], {\n continuationToken,\n });\n\n return page;\n }\n\n /**\n * Insert entity in the table.\n * @param entity - The properties for the table entity.\n * @param options - The options parameters.\n *\n * ### Example creating an entity\n * ```ts snippet:ReadmeSampleCreateEntity\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const testEntity = {\n * partitionKey: \"P1\",\n * rowKey: \"R1\",\n * foo: \"foo\",\n * bar: 123,\n * };\n * await client.createEntity(testEntity);\n * ```\n */\n public createEntity<T extends object>(\n entity: TableEntity<T>,\n options: OperationOptions = {},\n ): Promise<CreateTableEntityResponse> {\n return tracingClient.withSpan(\"TableClient.createEntity\", options, (updatedOptions) => {\n const { ...createTableEntity } = updatedOptions || {};\n return this.table.insertEntity(this.tableName, {\n ...createTableEntity,\n tableEntityProperties: serialize(entity),\n responsePreference: \"return-no-content\",\n });\n });\n }\n\n /**\n * Deletes the specified entity in the table.\n * @param partitionKey - The partition key of the entity.\n * @param rowKey - The row key of the entity.\n * @param options - The options parameters.\n *\n * ### Example deleting an entity\n * ```ts snippet:ReadmeSampleDeleteEntity\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * // deleteEntity deletes the entity that matches exactly the partitionKey and rowKey\n * await client.deleteEntity(\"<partitionKey>\", \"<rowKey>\");\n * ```\n */\n public deleteEntity(\n partitionKey: string,\n rowKey: string,\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: DeleteTableEntityOptions = {},\n ): Promise<DeleteTableEntityResponse> {\n return tracingClient.withSpan(\"TableClient.deleteEntity\", options, (updatedOptions) => {\n const { etag = \"*\", ...rest } = updatedOptions;\n const deleteOptions: TableDeleteEntityOptionalParams = {\n ...rest,\n };\n return this.table.deleteEntity(\n this.tableName,\n escapeQuotes(partitionKey),\n escapeQuotes(rowKey),\n etag,\n deleteOptions,\n );\n });\n }\n\n /**\n * Update an entity in the table.\n * @param entity - The properties of the entity to be updated.\n * @param mode - The different modes for updating the entity:\n * - Merge: Updates an entity by updating the entity's properties without replacing the existing entity.\n * - Replace: Updates an existing entity by replacing the entire entity.\n * @param options - The options parameters.\n *\n * ### Example updating an entity\n * ```ts snippet:ReadmeSampleUpdateEntity\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const entity = { partitionKey: \"p1\", rowKey: \"r1\", bar: \"updatedBar\" };\n *\n * // Update uses update mode \"Merge\" as default\n * // merge means that update will match a stored entity\n * // that has the same partitionKey and rowKey as the entity\n * // passed to the method and then will only update the properties present in it.\n * // Any other properties that are not defined in the entity passed to updateEntity\n * // will remain as they are in the service\n * await client.updateEntity(entity);\n *\n * // We can also set the update mode to Replace, which will match the entity passed\n * // to updateEntity with one stored in the service and replace with the new one.\n * // If there are any missing properties in the entity passed to updateEntity, they\n * // will be removed from the entity stored in the service\n * await client.updateEntity(entity, \"Replace\");\n * ```\n */\n public updateEntity<T extends object>(\n entity: TableEntity<T>,\n mode: UpdateMode = \"Merge\",\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options: UpdateTableEntityOptions = {},\n ): Promise<UpdateEntityResponse> {\n return tracingClient.withSpan(\n \"TableClient.updateEntity\",\n options,\n async (updatedOptions) => {\n const partitionKey = escapeQuotes(entity.partitionKey);\n const rowKey = escapeQuotes(entity.rowKey);\n\n const { etag = \"*\", ...updateEntityOptions } = updatedOptions || {};\n if (mode === \"Merge\") {\n return this.table.mergeEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ifMatch: etag,\n ...updateEntityOptions,\n });\n }\n if (mode === \"Replace\") {\n return this.table.updateEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ifMatch: etag,\n ...updateEntityOptions,\n });\n }\n\n throw new Error(`Unexpected value for update mode: ${mode}`);\n },\n {\n spanAttributes: {\n updateEntityMode: mode,\n },\n },\n );\n }\n\n /**\n * Upsert an entity in the table.\n * @param entity - The properties for the table entity.\n * @param mode - The different modes for updating the entity:\n * - Merge: Updates an entity by updating the entity's properties without replacing the existing entity.\n * - Replace: Updates an existing entity by replacing the entire entity.\n * @param options - The options parameters.\n *\n * ### Example upserting an entity\n * ```ts snippet:ReadmeSampleUpsertEntity\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const entity = { partitionKey: \"p1\", rowKey: \"r1\", bar: \"updatedBar\" };\n *\n * // Upsert uses update mode \"Merge\" as default.\n * // This behaves similarly to update but creates the entity\n * // if it doesn't exist in the service\n * await client.upsertEntity(entity);\n *\n * // We can also set the update mode to Replace.\n * // This behaves similarly to update but creates the entity\n * // if it doesn't exist in the service\n * await client.upsertEntity(entity, \"Replace\");\n * ```\n */\n public upsertEntity<T extends object>(\n entity: TableEntity<T>,\n mode: UpdateMode = \"Merge\",\n options: OperationOptions = {},\n ): Promise<UpsertEntityResponse> {\n return tracingClient.withSpan(\n \"TableClient.upsertEntity\",\n options,\n async (updatedOptions) => {\n const partitionKey = escapeQuotes(entity.partitionKey);\n const rowKey = escapeQuotes(entity.rowKey);\n\n if (mode === \"Merge\") {\n return this.table.mergeEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ...updatedOptions,\n });\n }\n\n if (mode === \"Replace\") {\n return this.table.updateEntity(this.tableName, partitionKey, rowKey, {\n tableEntityProperties: serialize(entity),\n ...updatedOptions,\n });\n }\n throw new Error(`Unexpected value for update mode: ${mode}`);\n },\n {\n spanAttributes: {\n upsertEntityMode: mode,\n },\n },\n );\n }\n\n /**\n * Retrieves details about any stored access policies specified on the table that may be used with\n * Shared Access Signatures.\n * @param options - The options parameters.\n */\n public getAccessPolicy(options: OperationOptions = {}): Promise<GetAccessPolicyResponse> {\n return tracingClient.withSpan(\n \"TableClient.getAccessPolicy\",\n options,\n async (updatedOptions) => {\n const signedIdentifiers = await this.table.getAccessPolicy(this.tableName, updatedOptions);\n return deserializeSignedIdentifier(signedIdentifiers);\n },\n );\n }\n\n /**\n * Sets stored access policies for the table that may be used with Shared Access Signatures.\n * @param tableAcl - The Access Control List for the table.\n * @param options - The options parameters.\n */\n public setAccessPolicy(\n tableAcl: SignedIdentifier[],\n options: OperationOptions = {},\n ): Promise<SetAccessPolicyResponse> {\n return tracingClient.withSpan(\"TableClient.setAccessPolicy\", options, (updatedOptions) => {\n const serlializedAcl = serializeSignedIdentifiers(tableAcl);\n return this.table.setAccessPolicy(this.tableName, {\n ...updatedOptions,\n tableAcl: serlializedAcl,\n });\n });\n }\n\n /**\n * Submits a Transaction which is composed of a set of actions. You can provide the actions as a list\n * or you can use {@link TableTransaction} to help building the transaction.\n *\n * Example usage:\n * ```ts snippet:ReadmeSampleSubmitTransaction\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient, TransactionAction } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const actions: TransactionAction[] = [\n * [\"create\", { partitionKey: \"p1\", rowKey: \"1\", data: \"test1\" }],\n * [\"delete\", { partitionKey: \"p1\", rowKey: \"2\" }],\n * [\"update\", { partitionKey: \"p1\", rowKey: \"3\", data: \"newTest\" }, \"Merge\"],\n * ];\n * const result = await client.submitTransaction(actions);\n * ```\n *\n * Example usage with TableTransaction:\n * ```ts snippet:ReadmeSampleSubmitTransactionWithTableTransaction\n * import { DefaultAzureCredential } from \"@azure/identity\";\n * import { TableClient, TableTransaction } from \"@azure/data-tables\";\n *\n * const account = \"<account>\";\n * const accountKey = \"<accountkey>\";\n * const tableName = \"<tableName>\";\n *\n * const credential = new DefaultAzureCredential();\n * const client = new TableClient(`https://${account}.table.core.windows.net`, tableName, credential);\n *\n * const transaction = new TableTransaction();\n *\n * // Call the available action in the TableTransaction object\n * transaction.createEntity({ partitionKey: \"p1\", rowKey: \"1\", data: \"test1\" });\n * transaction.deleteEntity(\"p1\", \"2\");\n * transaction.updateEntity({ partitionKey: \"p1\", rowKey: \"3\", data: \"newTest\" }, \"Merge\");\n *\n * // submitTransaction with the actions list on the transaction.\n * const result = await client.submitTransaction(transaction.actions);\n * ```\n *\n * @param actions - tuple that contains the action to perform, and the entity to perform the action with\n * @param options - Options for the request.\n */\n public async submitTransaction(\n actions: TransactionAction[],\n\n options: OperationOptions = {},\n ): Promise<TableTransactionResponse> {\n const partitionKey = actions[0][1].partitionKey;\n const transactionId = Uuid.generateUuid();\n const changesetId = Uuid.generateUuid();\n\n // Add pipeline\n const transactionClient = new InternalTableTransaction(\n this.url,\n partitionKey,\n transactionId,\n changesetId,\n this.generatedClient,\n new TableClient(this.url, this.tableName),\n this.credential,\n this.allowInsecureConnection,\n );\n\n for (const item of actions) {\n const [action, entity, updateMode = \"Merge\", updateOptions] = item;\n switch (action) {\n case \"create\":\n transactionClient.createEntity(entity);\n break;\n case \"delete\":\n transactionClient.deleteEntity(entity.partitionKey, entity.rowKey);\n break;\n case \"update\":\n transactionClient.updateEntity(entity, updateMode, updateOptions);\n break;\n case \"upsert\":\n transactionClient.upsertEntity(entity, updateMode);\n }\n }\n\n return transactionClient.submitTransaction(options);\n }\n\n /**\n *\n * Creates an instance of TableClient from connection string.\n *\n * @param connectionString - Account connection string or a SAS connection string of an Azure storage account.\n * [ Note - Account connection string can only be used in NODE.JS runtime. ]\n * Account connection string example -\n * `DefaultEndpointsProtocol=https;AccountName=myaccount;AccountKey=accountKey;EndpointSuffix=core.windows.net`\n * SAS connection string example -\n * `BlobEndpoint=https://myaccount.table.core.windows.net/;QueueEndpoint=https://myaccount.queue.core.windows.net/;FileEndpoint=https://myaccount.file.core.windows.net/;TableEndpoint=https://myaccount.table.core.windows.net/;SharedAccessSignature=sasString`\n * @param options - Options to configure the HTTP pipeline.\n * @returns A new TableClient from the given connection string.\n */\n public static fromConnectionString(\n connectionString: string,\n tableName: string,\n // eslint-disable-next-line @azure/azure-sdk/ts-naming-options\n options?: TableClientOptions,\n ): TableClient {\n const {\n url,\n options: clientOptions,\n credential,\n } = getClientParamsFromConnectionString(connectionString, options);\n if (credential) {\n return new TableClient(url, tableName, credential, clientOptions);\n } else {\n return new TableClient(url, tableName, clientOptions);\n }\n }\n}\n\ntype InternalQueryOptions = TableEntityQueryOptions & { top?: number };\ninterface InternalListTableEntitiesOptions extends ListTableEntitiesOptions {\n queryOptions?: InternalQueryOptions;\n /**\n * An entity query continuation token from a previous call.\n */\n continuationToken?: string;\n /**\n * If true, automatic type conversion will be disabled and entity properties will\n * be represented by full metadata types. For example, an Int32 value will be \\{value: \"123\", type: \"Int32\"\\} instead of 123.\n * This option applies for all the properties\n */\n disableTypeConversion?: boolean;\n}\n"]}
|
|
@@ -79,10 +79,6 @@ export declare class TableServiceClient {
|
|
|
79
79
|
* import { DefaultAzureCredential } from "@azure/identity";
|
|
80
80
|
* import { TableServiceClient } from "@azure/data-tables";
|
|
81
81
|
*
|
|
82
|
-
* // DefaultAzureCredential expects the following three environment variables:
|
|
83
|
-
* // - AZURE_TENANT_ID: The tenant ID in Azure Active Directory
|
|
84
|
-
* // - AZURE_CLIENT_ID: The application (client) ID registered in the AAD tenant
|
|
85
|
-
* // - AZURE_CLIENT_SECRET: The client secret for the registered application
|
|
86
82
|
* const credential = new DefaultAzureCredential();
|
|
87
83
|
* const account = "<account name>";
|
|
88
84
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableServiceClient.d.ts","sourceRoot":"","sources":["../../src/TableServiceClient.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAEV,gBAAgB,EAEjB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EACV,qBAAqB,EACrB,SAAS,EAET,yBAAyB,EAC1B,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,kBAAkB,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAW3F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAYvD;;;GAGG;AACH,qBAAa,kBAAkB;IAC7B;;OAEG;IACI,GAAG,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACI,QAAQ,EAAE,QAAQ,CAAC;IAC1B,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,OAAO,CAAU;IAEzB;;;;;;;;;;;;;;;;;;;;;OAqBG;gBACS,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,yBAAyB;IAC5F;;;;;;;;;;;;;;;;;;;;OAoBG;gBACS,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,yBAAyB;IACvF
|
|
1
|
+
{"version":3,"file":"TableServiceClient.d.ts","sourceRoot":"","sources":["../../src/TableServiceClient.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,qBAAqB,EACrB,qBAAqB,EACrB,iBAAiB,EACjB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,sBAAsB,CAAC;AAC9B,OAAO,KAAK,EAEV,gBAAgB,EAEjB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,KAAK,EACV,qBAAqB,EACrB,SAAS,EAET,yBAAyB,EAC1B,MAAM,aAAa,CAAC;AACrB,OAAO,KAAK,EAAE,kBAAkB,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAW3F,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AAC1D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAYvD;;;GAGG;AACH,qBAAa,kBAAkB;IAC7B;;OAEG;IACI,GAAG,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACI,QAAQ,EAAE,QAAQ,CAAC;IAC1B,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,OAAO,CAAU;IAEzB;;;;;;;;;;;;;;;;;;;;;OAqBG;gBACS,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,kBAAkB,EAAE,OAAO,CAAC,EAAE,yBAAyB;IAC5F;;;;;;;;;;;;;;;;;;;;OAoBG;gBACS,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,yBAAyB;IACvF;;;;;;;;;;;;;;;;;;;;;OAqBG;gBACS,GAAG,EAAE,MAAM,EAAE,UAAU,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE,yBAAyB;IACzF;;;;;;;;;;;;;;;;;;;;OAoBG;gBACS,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,yBAAyB;IAqD5D;;;;OAIG;IACU,aAAa,CAAC,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAM1F;;;;OAIG;IACI,aAAa,CAAC,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAMpF;;;;;OAKG;IACI,aAAa,CAClB,UAAU,EAAE,iBAAiB,EAC7B,OAAO,GAAE,oBAAyB,GACjC,OAAO,CAAC,qBAAqB,CAAC;IAMjC;;;;OAIG;IACI,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC;IAc/E;;;;OAIG;IACI,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,gBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC;IAkB/E;;;OAGG;IACI,UAAU,CAEf,OAAO,CAAC,EAAE,qBAAqB,GAC9B,0BAA0B,CAAC,SAAS,EAAE,mBAAmB,CAAC;YAyB9C,aAAa;YAiBb,cAAc;YA4Bf,WAAW;IASzB;;;;;;;;;;;;OAYG;WACW,oBAAoB,CAChC,gBAAgB,EAAE,MAAM,EAExB,OAAO,CAAC,EAAE,yBAAyB,GAClC,kBAAkB;CAatB"}
|